home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / messaging / config / LoaderConfig.as
Encoding:
Text File  |  2010-05-14  |  647 b   |  32 lines

  1. package mx.messaging.config
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class LoaderConfig
  8.    {
  9.       mx_internal static var _parameters:Object;
  10.       
  11.       mx_internal static const VERSION:String = "2.0.1.0";
  12.       
  13.       mx_internal static var _url:String = null;
  14.       
  15.       public function LoaderConfig()
  16.       {
  17.          super();
  18.       }
  19.       
  20.       public static function get url() : String
  21.       {
  22.          return mx_internal::_url;
  23.       }
  24.       
  25.       public static function get parameters() : Object
  26.       {
  27.          return mx_internal::_parameters;
  28.       }
  29.    }
  30. }
  31.  
  32.